home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 37 / Amiga Format CD37 (1999-02-16)(Future Publishing)(GB)(Track 1 of 3)[!][issue 1999-03].iso / -screenplay- / shareware / invasionforce / source / includes / cyber1_protos.h < prev    next >
C/C++ Source or Header  |  1999-01-09  |  906b  |  41 lines

  1. /* Prototypes for functions defined in
  2. cyber1.c
  3.  */
  4.  
  5. struct GovNode * AI1_locate_gov(struct City * );
  6.  
  7. struct GovNode * AI1_add_gov(struct City * );
  8.  
  9. void AI1_set_gov_prod(struct City * , struct GovNode * );
  10.  
  11. void AI1_play_turn(int );
  12.  
  13. void AI1_setup_area_of_interest(struct GovNode * );
  14.  
  15. void AI1_do_all_histograms(void);
  16.  
  17. void AI1_do_one_histogram(struct GovNode * );
  18.  
  19. void AI1_set_gov_mode(struct GovNode * );
  20.  
  21. void AI1_clear_all_orders(struct GovNode * );
  22.  
  23. void AI1_give_orders(void);
  24.  
  25. struct GovNode * AI1_FindOwner(struct Unit * );
  26.  
  27. void AI1_computer_give_orders(struct Unit * , int , short , short , short , short , int );
  28.  
  29. int AI1_do_unit_actions(void);
  30.  
  31. int AI1_look_around(struct Unit * );
  32.  
  33. int AI1_calc_dir(enum Direction , short , short , short * , short * );
  34.  
  35. void AI1_execute_standing_order(struct Unit * );
  36.  
  37. void AI1_command_random(struct Unit * );
  38.  
  39. int AI1_command_headto(struct Unit * );
  40.  
  41.